Keycloak REST Services 1.2.0.Final

Path: / admin / realms / {realm} / users / {username} / role-mappings / clients-by-id / {id} / composite

Get effective client-level role mappings. This recurses any composite roles

Path parameters:
realm - realm name (not id!)
username -
id -

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/users/{username}/role-mappings/clients-by-id/{id}/compositeGet effective client-level role mappings.

Method Detail

GET /admin/realms/{realm}/users/{username}/role-mappings/clients-by-id/{id}/composite

Get effective client-level role mappings. This recurses any composite roles

HTTP Example:
GET /admin/realms/{realm}/users/{username}/role-mappings/clients-by-id/{id}/composite
API Example:

UserClientRoleMappingsResource.getCompositeClientRoleMappings({'realm': /* name realm name (not id!) */,
  'username': …,
  'id': …});

Output:
List<RoleRepresentation> -
Produces:
application/json

Keycloak REST Services 1.2.0.Final